; The CMD file.
;
; Two parts: 1. Command definition and  2. State entry
; (state entry is after the commands def section)
;
; 1. Command definition
; ---------------------
; Note: The commands are CASE-SENSITIVE, and so are the command names.
; The eight directions are:
;   B, DB, D, DF, F, UF, U, UB     (all CAPS)
;   corresponding to back, down-back, down, downforward, etc.
; The six buttons are:
;   a, b, c, x, y, z               (all lower case)
;   In default key config, abc are are the bottom, and xyz are on the
;   top row. For 2 button characters, we recommend you use a and b.
;   For 6 button characters, use abc for kicks and xyz for punches.
;
; Each [Command] section defines a command that you can use for
; state entry, as well as in the CNS file.
; The command section should look like:
;
;   [Command]
;   name = some_name
;   command = the_command
;   time = time (optional -- defaults to 15 if omitted)
;
; - some_name
;   A name to give that command. You'll use this name to refer to
;   that command in the state entry, as well as the CNS. It is case-
;   sensitive (QCB_a is NOT the same as Qcb_a or QCB_A).
;
; - command
;   list of buttons or directions, separated by commas.
;   Directions and buttons can be preceded by special characters:
;   slash (/) - means the key must be held down
;          egs. command = /D       ;hold the down direction
;               command = /DB, a   ;hold down-back while you press a
;   tilde (~) - to detect key releases
;          egs. command = ~a       ;release the a button
;               command = ~D, F, a ;release down, press fwd, then a
;          If you want to detect "charge moves", you can specify
;          the time the key must be held down for (in game-ticks)
;          egs. command = ~30a     ;hold a for at least 30 ticks, then release
;   dollar ($) - Direction-only: detect as 4-way
;          egs. command = $D       ;will detect if D, DB or DF is held
;               command = $B       ;will detect if B, DB or UB is held
;   plus (+) - Buttons only: simultaneous press
;          egs. command = a+b      ;press a and b at the same time
;               command = x+y+z    ;press x, y and z at the same time
;   You can combine them:
;     eg. command = ~30$D, a+b     ;hold D, DB or DF for 30 ticks, release,
;                                  ;then press a and b together
;   It's recommended that for most "motion" commads, eg. quarter-circle-fwd,
;   you start off with a "release direction". This matches the way most
;   popular fighting games implement their command detection.
;
; - time (optional)
;   Time allowed to do the command, given in game-ticks. Defaults to 15
;   if omitted
;
; If you have two or more commands with the same name, all of them will
; work. You can use it to allow multiple motions for the same move.
;
; Some common commands examples are given below.
;
; [Command] ;Quarter circle forward + x
; name = "QCF_x"
; command = ~D, DF, F, x
;
; [Command] ;Half circle back + a
; name = "HCB_a"
; command = ~F, DF, D, DB, B, a
;
; [Command] ;Two quarter circles forward + y
; name = "2QCF_y"
; command = ~D, DF, F, D, DF, F, y
;
; [Command] ;Tap b rapidly
; name = "5b"
; command = b, b, b, b, b
; time = 30
;
; [Command] ;Charge back, then forward + z
; name = "charge_B_F_z"
; command = ~60$B, F, z
; time = 10
;
; [Command] ;Charge down, then up + c
; name = "charge_D_U_c"
; command = ~60$D, U, c
; time = 10
;

;-| Button Remapping |-----------------------------------------------------
; This section lets you remap the player's buttons (to easily change the
; button configuration). The format is:
;   old_button = new_button
; If new_button is left blank, the button cannot be pressed.
[Remap]
x = x
y = y
z = z
a = a
b = b
c = c
s = s

;-| Default Values |-------------------------------------------------------
[Defaults]
; Default value for the "time" parameter of a Command. Minimum 1.
command.time = 30

; Default value for the "buffer.time" parameter of a Command. Minimum 1,
; maximum 30.


command.buffer.time = 1

;-| Super Motions |--------------------------------------------------------
[command]
name = "super"
command = a+c
time = 30

[command]
name = "beam"
command = y+z
time = 30

[command]
name = "hammer dance"
command = b+x
time = 15

[command]
name = "spin_hyper"
command = x+z
time = 30

[command]
name = "2spin_hyper"
command = x+y
time = 30

[Command]
name = "charge"     ;Required (do not remove)
command = c+x
time = 30
;-| Special Motions |------------------------------------------------------
[command]
name = "fb"
command = a+b
time = 15

[command]
name = "fly"
command = b+c
time = 15

[command]
name = "fly2"
command = b+c
time = 15
;-| Double Tap |-----------------------------------------------------------
[Command]
name = "FF"     ;Required (do not remove)
command = F, F
time = 10

[Command]
name = "BB"     ;Required (do not remove)
command = B, B
time = 10

;-| 2/3 Button Combination |-----------------------------------------------
[Command]
name = "recovery" ;Required (do not remove)
command = x+y
time = 1

[Command]
name = "recovery"
command = y+z
time = 1

[Command]
name = "recovery"
command = x+z
time = 1

[Command]
name = "recovery"
command = a+b
time = 1

[Command]
name = "recovery"
command = b+c
time = 1

[Command]
name = "recovery"
command = a+c
time = 1

;-| Dir + Button |---------------------------------------------------------
[Command]
name = "back_x"
command = /$B,x
time = 1

[Command]
name = "back_y"
command = /$B,y
time = 1

[Command]
name = "back_z"
command = /$B,z
time = 1

[Command]
name = "down_x"
command = /$D,x
time = 1

[Command]
name = "down_y"
command = /$D,y
time = 1

[Command]
name = "down_z"
command = /$D,z
time = 1

[Command]
name = "fwd_x"
command = /$F,x
time = 1

[Command]
name = "fwd_y"
command = /$F,y
time = 1

[Command]
name = "fwd_z"
command = /$F,z
time = 1

[Command]
name = "up_x"
command = /$U,x
time = 1

[Command]
name = "up_y"
command = /$U,y
time = 1

[Command]
name = "up_z"
command = /$U,z
time = 1

[Command]
name = "back_a"
command = /$B,a
time = 1

[Command]
name = "back_b"
command = /$B,b
time = 1

[Command]
name = "back_c"
command = /$B,c
time = 1

[Command]
name = "down_a"
command = /$D,a
time = 1

[Command]
name = "down_b"
command = /$D,b
time = 1

[Command]
name = "down_c"
command = /$D,c
time = 1

[Command]
name = "fwd_a"
command = /$F,a
time = 1

[Command]
name = "fwd_b"
command = /$F,b
time = 1

[Command]
name = "fwd_c"
command = /$F,c
time = 1

[Command]
name = "up_a"
command = /$U,a
time = 1

[Command]
name = "up_b"
command = /$U,b
time = 1

[Command]
name = "up_c"
command = /$U,c
time = 1

;-| Single Button |---------------------------------------------------------
[Command]
name = "a"
command = a
time = 1

[Command]
name = "b"
command = b
time = 1

[Command]
name = "c"
command = c
time = 1

[Command]
name = "x"
command = x
time = 1

[Command]
name = "y"
command = y
time = 1

[Command]
name = "z"
command = z
time = 1

[Command]
name = "s"
command = s
time = 1

;-| Single Dir |------------------------------------------------------------
[Command]
name = "fwd" ;Required (do not remove)
command = $F
time = 1

[Command]
name = "downfwd"
command = $DF
time = 1

[Command]
name = "down" ;Required (do not remove)
command = $D
time = 1

[Command]
name = "downback"
command = $DB
time = 1

[Command]
name = "back" ;Required (do not remove)
command = $B
time = 1

[Command]
name = "upback"
command = $UB
time = 1

[Command]
name = "up" ;Required (do not remove)
command = $U
time = 1

[Command]
name = "upfwd"
command = $UF
time = 1

;-| Hold Button |--------------------------------------------------------------
[Command]
name = "hold_x"
command = /x
time = 1

[Command]
name = "hold_y"
command = /y
time = 1

[Command]
name = "hold_z"
command = /z
time = 1

[Command]
name = "hold_a"
command = /a
time = 1

[Command]
name = "hold_b"
command = /b
time = 1

[Command]
name = "hold_c"
command = /c
time = 1

[Command]
name = "hold_s"
command = /s
time = 1

;-| Hold Dir |--------------------------------------------------------------
[Command]
name = "holdfwd" ;Required (do not remove)
command = /$F
time = 1

[Command]
name = "holddownfwd"
command = /$DF
time = 1

[Command]
name = "holddown" ;Required (do not remove)
command = /$D
time = 1

[Command]
name = "holddownback"
command = /$DB
time = 1

[Command]
name = "holdback" ;Required (do not remove)
command = /$B
time = 1

[Command]
name = "holdupback"
command = /$UB
time = 1

[Command]
name = "holdup" ;Required (do not remove)
command = /$U
time = 1

[Command]
name = "holdupfwd"
command = /$UF
time = 1
;------------------------------------------------------------------------



;---------------------------------------------------------------------------
; 2. State entry
; --------------
; This is where you define what commands bring you to what states.
;
; Each state entry block looks like:
;   [State -1, Label]           ;Change Label to any name you want to use to
;                               ;identify the state with.
;   type = ChangeState          ;Don't change this
;   value = new_state_number
;   trigger1 = command = command_name
;   . . .  (any additional triggers)
;
; - new_state_number is the number of the state to change to
; - command_name is the name of the command (from the section above)
; - Useful triggers to know:
;   - statetype
;       S, C or A : current state-type of player (stand, crouch, air)
;   - ctrl
;       0 or 1 : 1 if player has control. Unless "interrupting" another
;                move, you'll want ctrl = 1
;   - stateno
;       number of state player is in - useful for "move interrupts"
;   - movecontact
;       0 or 1 : 1 if player's last attack touched the opponent
;                useful for "move interrupts"
;
; Note: The order of state entry is important.
;   State entry with a certain command must come before another state
;   entry with a command that is the subset of the first.
;   For example, command "fwd_a" must be listed before "a", and
;   "fwd_ab" should come before both of the others.
;
; For reference on triggers, see CNS documentation.
;
; Just for your information (skip if you're not interested):
; This part is an extension of the CNS. "State -1" is a special state
; that is executed once every game-tick, regardless of what other state
; you are in.


; Don't remove the following line. It's required by the CMD standard.
[Statedef -1]

[State -1, AI TRIGGER]
type = varset
triggerall = RoundState != 9
trigger1 = command = "cpu1"
trigger2 = command = "cpu2"
trigger3 = command = "cpu3"
trigger4 = command = "cpu4"
trigger5 = command = "cpu05"
trigger6 = command = "cpu06"
trigger7 = command = "cpu07"
trigger8 = command = "cpu08"
trigger9 = command = "cpu01"
trigger10 = command = "cpu02"
trigger11 = command = "cpu03"
trigger12 = command = "cpu04"
trigger13 = command = "cpu5"
trigger14 = command = "cpu6"
trigger15 = command = "cpu7"
trigger16 = command = "cpu8"
trigger17 = command = "cpu0a"
v = 5
value = 1

;spin_hyper
[State -1, spin_hyper]
type = ChangeState
value = 8000
triggerall = command = "spin_hyper"
trigger1 =  power >= 1000
trigger1 =  ctrl

[State -1, WindAI]
type = ChangeState
value = 1401
triggerall = var (5)
triggerall = !lose
triggerall = !win
triggerall = P2BodyDist X <= 30
trigger1 = statetype = s
trigger1 =  ctrl
trigger1 =  power >= 1200
trigger1 =  life >= 550
trigger1 =  random <= 30

;2spin_hyper
[State -1, spin_hyper]
type = ChangeState
value = 1401
triggerall = command = "2spin_hyper"
trigger1 =  power >= 1000
trigger1 =  ctrl

[State -1, hammer strikeAI]
type = ChangeState
value = 8000
triggerall = var (5)
triggerall = !win
triggerall = !lose
trigger1 = statetype = s
trigger1 =  power >= 1000 & power <= 2200
trigger1 = P2BodyDist X >= 175
trigger1 =  ctrl
trigger1 =  random <= 30
trigger1 =  power >= 1000
trigger1 =  life >= 550

;fb
[State -1, fb]
type = ChangeState
value = 777
triggerall = command = "fb"
trigger1 = (statetype = s) && ctrl

[State -1, hammer dance]
type = ChangeState
value = 12345
triggerall = command = "hammer dance"
triggerall = power >= 500
triggerall = statetype = S
triggerall = ctrl
triggerall = stateno != 100
trigger1 = p2bodydist X < 10
trigger1 = (statetype = s) && ctrl

[State -1, hammer danceAI]
type = ChangeState
value = 12345
triggerall = var (5)
triggerall = !lose
triggerall = !win
triggerall = P2BodyDist X <= 30
triggerall = statetype = s
triggerall = power >= 500
trigger1 =  ctrl
trigger1 =  random <= 15
trigger1 =  life >= 600
trigger2 =  ctrl
trigger2 =  random <= 5
trigger2 =  life <= 600

[State -1, ballAI]
type = ChangeState
value = 777
triggerall = var (5)
triggerall = !win
triggerall = !lose
triggerall = statetype = s
trigger1 =  ctrl
trigger1 =  random <= 7


;beam
[State -1, beam]
type = ChangeState
value = 1090
triggerall = command = "beam"
trigger1 = (statetype = s) && ctrl
triggerall = power >= 3000

[State -1, beam AI]
type = ChangeState
value = 1090
triggerall = var (5)
triggerall = !win
triggerall = !lose
triggerall = statetype = s
triggerall = power >= 3000
trigger1 =  ctrl
trigger1 = command!="cpu1" || command !="cpu3" || command !="cpu4" || command !="cpu05" || command !="cpu06" || command !="cpu07" || command !="cpu08" || command !="cpu2"
trigger1 = P2BodyDist X >= 31

;fly
[State -1, fly]
type = ChangeState
value = 1000
triggerall = command = "fly"
trigger1 = (statetype = a) && ctrl


;===========================================================================
;---------------------------------------------------------------------------
  [State -1 AI combo 1]
type = ChangeState
value = 207
triggerall = var (5)
triggerall = !win
triggerall = P2BodyDist X <= 11 & P2BodyDist X >= 7
triggerall = P2BodyDist Y >= -10
triggerall = statetype = S
trigger1 =  ctrl
trigger1 =  random <= 100

[State -1 AI combo 2]
type = ChangeState
value = 237
triggerall = var (5)
triggerall = !win
triggerall = P2BodyDist X <= 10 & P2BodyDist X >= 0
triggerall = P2BodyDist Y >= -10
triggerall = statetype = S
trigger1 =  ctrl
trigger1 =  random <= 75

[State -1 AI combo 3]
type = ChangeState
value = 236
triggerall = var (5)
triggerall = !win
triggerall = P2BodyDist X <= 6 & P2BodyDist X >= 0
triggerall = P2BodyDist Y >= -10
triggerall = statetype = S
trigger1 =  ctrl
trigger1 =  random <= 80
;===========================================================================
;---------------------------------------------------------------------------
[State -1, Stand Medium KickAI]
type = ChangeState
value = 250
triggerall = var (5)
triggerall = !win
triggerall = P2BodyDist X <= 15 & P2BodyDist X >= 11
triggerall = P2BodyDist Y >= -10
triggerall = statetype = S
trigger1 =  ctrl
trigger1 =  random <= 25

[State -1, Standing med KickAI]
type = ChangeState
value = 210
triggerall = var (5)
triggerall = !win
triggerall = P2BodyDist X >= 40 & P2BodyDist X <= 70
triggerall = P2BodyDist Y >= -10
trigger1 = statetype = S
trigger1 =  ctrl
trigger1 =  random <= 50


[State -1, Stand Light KickAI]
type = ChangeState
value = 230
triggerall = var (5)
triggerall = !win
triggerall = P2BodyDist X <= 11 & P2BodyDist X >= 7
triggerall = P2BodyDist Y >= -10
triggerall = statetype = S
trigger1 =  ctrl
trigger1 =  random <= 25

[State -1, Stand Medium KickAI]
type = ChangeState
value = 200
triggerall = var (5)
triggerall = !win
triggerall = P2BodyDist X <= 15 & P2BodyDist X >= 11
triggerall = P2BodyDist Y >= -10
triggerall = statetype = S
trigger1 =  ctrl
trigger1 =  random <= 25

[State -1, Standing med KickAI]
type = ChangeState
value = 240
triggerall = var (5)
triggerall = !win
triggerall = P2BodyDist X >= 40 & P2BodyDist X <= 70
triggerall = P2BodyDist Y >= -10
trigger1 = statetype = S
trigger1 =  ctrl
trigger1 =  random <= 50


[State -1, Stand Light KickAI]
type = ChangeState
value = 220
triggerall = var (5)
triggerall = !win
triggerall = P2BodyDist X <= 11 & P2BodyDist X >= 7
triggerall = P2BodyDist Y >= -10
triggerall = statetype = S
trigger1 =  ctrl
trigger1 =  random <= 25

[State -1, Crouching strong KickAI]
type = ChangeState
value = 450
triggerall = var (5)
triggerall = !win
trigger1 = P2BodyDist Y <= -100 & P2BodyDist Y >= -120
trigger1 = P2BodyDist X <= 4
trigger1 = statetype = s
trigger1 =  ctrl
trigger2 = P2BodyDist X <= 4
trigger2 = P2BodyDist y = 0
trigger2 = statetype = C
trigger2 =  ctrl
trigger2 =  random <= 50

[State -1, Crouching strong KickAI]
type = ChangeState
value = 417
triggerall = var (5)
triggerall = !win
triggerall = statetype != A
trigger1 = P2BodyDist Y <= 100 & P2BodyDist Y >= 120
trigger1 = P2BodyDist X <= 4
trigger1 =  ctrl
trigger2 = P2BodyDist X <= 4
trigger2 = P2BodyDist y = 0
trigger2 =  ctrl
trigger2 =  random <= 20
trigger3 = p2bodydist X < 10
trigger3 = p2stateno = 5120
trigger3 = ctrl

[State -1, Crouching strong KickAI]
type = ChangeState
value = 420
triggerall = var (5)
triggerall = !win
trigger1 = P2BodyDist Y <= -100 & P2BodyDist Y >= -120
trigger1 = P2BodyDist X <= 4
trigger1 = statetype = s
trigger1 =  ctrl
trigger2 = P2BodyDist X <= 4
trigger2 = P2BodyDist y = 0
trigger2 = statetype = C
trigger2 =  ctrl
trigger2 =  random <= 18

;--------------------------
; Run Fwd
[State -1, Run Fwd]
type = ChangeState
value = 100
trigger1 = command = "FF"
trigger1 = statetype = S
trigger1 = ctrl

;---------------------------------------------------------------------------
; Run Back
[State -1, Run Back]
type = ChangeState
value = 105
trigger1 = command = "BB"
trigger1 = statetype = S
trigger1 = ctrl

;---------------------------------------------------------------------------
; Throw
[State -1, Throw]
type = ChangeState
value = 800
triggerall = command = "y" || command = "z"
triggerall = statetype = S
triggerall = ctrl
triggerall = stateno != 100
trigger1 = command = "holdfwd"
trigger1 = p2bodydist X < 10
trigger1 = (p2statetype = S) || (p2statetype = C)
trigger1 = p2movetype != H
trigger2 = command = "holdback"
trigger2 = p2bodydist X < 10
trigger2 = (p2statetype = S) || (p2statetype = C)
trigger2 = p2movetype != H

[State -1, back up]
type = ChangeState
value = 105
triggerall = var (5)
triggerall = !win
triggerall = !lose
triggerall = statetype != A
trigger1 = p2bodydist X < 10
trigger1 = p2stateno = 150
trigger1 = ctrl
trigger2 = p2bodydist X < 10
trigger2 = p2stateno = 151
trigger2 = ctrl
;===========================================================================
;---------------------------------------------------------------------------
; Taunt
[State -1, Taunt]
type = ChangeState
value = 195
triggerall = command = "s"
trigger1 = statetype != A
trigger1 = ctrl

; Taunt
[State -1, TauntAI]
type = ChangeState
value = 195
triggerall = var (7)
triggerall = statetype = s
trigger1 = p2life = 0
trigger1 = ctrl

;---------------------------------------------------------------------------
; Stand Light Punch
[State -1, Stand Light Punch]
type = ChangeState
value = 200
triggerall = command = "x"
triggerall = command != "holddown"
trigger1 = statetype = S
trigger1 = ctrl

[State -1, Stand Light PunchAI]
type = ChangeState
value = 200
triggerall = var (5)
triggerall = !win
triggerall = P2BodyDist X <= 6 & P2BodyDist X >= 0
triggerall = P2BodyDist Y >= -10
triggerall = statetype = S
trigger1 =  ctrl
trigger1 =  random <= 25

;---------------------------------------------------------------------------
; Stand Medium Punch
[State -1, Stand Medium Punch]
type = ChangeState
value = 210
triggerall = command = "y"
triggerall = command != "holddown"
trigger1 = statetype = S
trigger1 = ctrl

[State -1, Stand Medium punchAI]
type = ChangeState
value = 210
triggerall = var (5)
triggerall = !win
triggerall = P2BodyDist X <= 15 & P2BodyDist X >= 11
triggerall = P2BodyDist Y >= -10
triggerall = statetype = S
trigger1 =  ctrl
trigger1 =  random <= 25

;---------------------------------------------------------------------------
; Stand Strong Punch
[State -1, Stand Strong Punch]
type = ChangeState
value = 220
triggerall = command = "z"
triggerall = command != "holddown"
trigger1 = statetype = S
trigger1 = ctrl

[State -1, Stand Strong PunchAI]
type = ChangeState
value = 220
triggerall = var (5)
triggerall = !win
triggerall = P2BodyDist X <= 25 & P2BodyDist X >= 15
triggerall = P2BodyDist Y >= -10
triggerall = statetype = S
trigger1 =  ctrl
trigger1 =  random <= 30
;---------------------------------------------------------------------------
; Stand Light Kick
[State -1, Stand Light Kick]
type = ChangeState
value = 230
triggerall = command = "a"
triggerall = command != "holddown"
trigger1 = statetype = S
trigger1 = ctrl

[State -1, Stand Light KickAI]
type = ChangeState
value = 227
triggerall = var (5)
triggerall = !win
triggerall = P2BodyDist X <= 11 & P2BodyDist X >= 7
triggerall = P2BodyDist Y >= -10
triggerall = statetype = S
trigger1 =  ctrl
trigger1 =  random <= 25

;---------------------------------------------------------------------------
; Standing Medium Kick
[State -1, Standing Medium Kick]
type = ChangeState
value = 240
triggerall = command = "b"
triggerall = command != "holddown"
trigger1 = statetype = S
trigger1 = ctrl

[State -1, Stand Medium KickAI]
type = ChangeState
value = 240
triggerall = var (5)
triggerall = !win
triggerall = P2BodyDist X <= 15 & P2BodyDist X >= 11
triggerall = P2BodyDist Y >= -10
triggerall = statetype = S
trigger1 =  ctrl
trigger1 =  random <= 25

;---------------------------------------------------------------------------
; Standing Strong Kick
[State -1, Standing Strong Kick]
type = ChangeState
value = 250
triggerall = command = "c"
triggerall = command != "holddown"
trigger1 = statetype = S
trigger1 = ctrl

[State -1, Standing Strong KickAI]
type = ChangeState
value = 230
triggerall = var (5)
triggerall = !win
triggerall = P2BodyDist X <= 15 & P2BodyDist X >= 11
triggerall = P2BodyDist Y >= -10
trigger1 = statetype = S
trigger1 =  ctrl
trigger1 =  random <= 50

;---------------------------------------------------------------------------
; Crouching Light Punch
[State -1, Crouching Light Punch]
type = ChangeState
value = 400
triggerall = command = "x"
triggerall = command = "holddown"
trigger1 = statetype = C
trigger1 = ctrl

[State -1, Crouching Medium KickAI]
type = ChangeState
value = 400
triggerall = var (5)
triggerall = !win
triggerall = P2BodyDist X <= 4
triggerall = P2BodyDist y = 0
triggerall = statetype = C
trigger1 =  ctrl
trigger1 =  random <= 50

;---------------------------------------------------------------------------
; Crouching Medium Punch
[State -1, Crouching Medium Punch]
type = ChangeState
value = 410
triggerall = command = "y"
triggerall = command = "holddown"
trigger1 = statetype = C
trigger1 = ctrl

[State -1, Crouching Medium KickAI]
type = ChangeState
value = 410
triggerall = var (5)
triggerall = !win
triggerall = P2BodyDist X <= 5
triggerall = P2BodyDist y = 0
triggerall = statetype = C
trigger1 =  ctrl
trigger1 =  random <= 50

;---------------------------------------------------------------------------
; Crouching Strong Punch
[State -1, Crouching Strong Punch]
type = ChangeState
value = 420
triggerall = command = "z"
triggerall = command = "holddown"
trigger1 = statetype = C
trigger1 = ctrl

[State -1, Crouching Medium KickAI]
type = ChangeState
value = 420
triggerall = var (5)
triggerall = !win
triggerall = P2BodyDist X <= 6
triggerall = P2BodyDist y = 0
triggerall = statetype = C
trigger1 =  ctrl
trigger1 =  random <= 50

;---------------------------------------------------------------------------
; Crouching Light Kick
[State -1, Crouching Light Kick]
type = ChangeState
value = 400
triggerall = command = "a"
triggerall = command = "holddown"
trigger1 = statetype = C
trigger1 = ctrl

;---------------------------------------------------------------------------
; Crouching Medium Kick
[State -1, Crouching Medium Kick]
type = ChangeState
value = 410
triggerall = command = "b"
triggerall = command = "holddown"
trigger1 = statetype = C
trigger1 = ctrl

;---------------------------------------------------------------------------
; Crouching Strong Kick
[State -1, Crouching Strong Kick]
type = ChangeState
value = 420
triggerall = command = "c"
triggerall = command = "holddown"
trigger1 = statetype = C
trigger1 = ctrl

;---------------------------------------------------------------------------
; Jump Light Punch
[State -1, Jump Light Punch]
type = ChangeState
value = 640
triggerall = command = "x"
trigger1 = statetype = A
trigger1 = ctrl

;---------------------------------------------------------------------------
; Jump Medium Punch
[State -1, Jump Medium Punch]
type = ChangeState
value = 610
triggerall = command = "y"
trigger1 = statetype = A
trigger1 = ctrl

;---------------------------------------------------------------------------
; Jump Strong Punch
[State -1, Jump Strong Punch]
type = ChangeState
value = 620
triggerall = command = "z"
trigger1 = statetype = A
trigger1 = ctrl

[State -1, Jump strong punchAI]
type = ChangeState
value = 627
triggerall = var (5)
triggerall = !win
triggerall = P2statetype = A
triggerall = P2BodyDist X <= 15
triggerall = statetype = A
trigger1 =  ctrl

;---------------------------------------------------------------------------
; Jump Light Kick
[State -1, Jump Light Kick]
type = ChangeState
value = 600
triggerall = command = "a"
trigger1 = statetype = A
trigger1 = ctrl

;---------------------------------------------------------------------------
; Jump Medium Kick
[State -1, Jump Medium Kick]
type = ChangeState
value = 610
triggerall = command = "b"
trigger1 = statetype = A
trigger1 = ctrl

;---------------------------------------------------------------------------
; Jump Strong Kick
[State -1, Jump Strong Kick]
type = ChangeState
value = 650
triggerall = command = "c"
trigger1 = statetype = A
trigger1 = ctrl

;---------------------------------------------------------------------------

;---------------------------------------------------------------------------

;-| AI |--------------------------------------------------------------------
[Command]
name = "cpu1"
command = U,D,U,F
time = 1

[Command]
name = "cpu2"
command = D,U,D,F
time = 1

[Command]
name = "cpu3"
command = U,D,D,F
time = 1

[Command]
name = "cpu4"
command = U,D,U,F
time = 1

[Command]
name = "cpu0a"
command = ~U+a+b+c+x+y+z+s,DF, F, D,DF, F,x,x,x,x,x
time = 1

[Command]
name = "cpu05"
command = ~U+a+b+c+x+y+z+s,DF, F, D,DF, F,y,y,y,x,x
time = 1

[Command]
name = "cpu06"
command = ~U+a+b+c+x+y+z+s,DF, F, D,DF, F,z,z,z,x,x
time = 1

[Command]
name = "cpu07"
command = ~U+a+b+c+x+y+z+s,DF, F, D,DF, F,a,a,a,x,x
time = 1

[Command]
name = "cpu08"
command = ~U+a+b+c+x+y+z+s,DF, F, D,DF, F,b,b,b,x,x
time = 1

[Command]
name = "cpu01"
command = U,D,U,F,a+s
time = 1

[Command]
name = "cpu02"
command = D,U,D,F,a+s
time = 1

[Command]
name = "cpu03"
command = U,D,D,F,a+s
time = 1

[Command]
name = "cpu04"
command = U,D,U,F,a+s
time = 1

[Command]
name = "cpu5"
command = ~U+a+b+c+x+y+z+s,DF, F, D,DF, F,y,y,y,x,x,a+s
time = 1

[Command]
name = "cpu6"
command = ~U+a+b+c+x+y+z+s,DF, F, D,DF, F,z,z,z,x,x,a+s
time = 1

[Command]
name = "cpu7"
command = ~U+a+b+c+x+y+z+s,DF, F, D,DF, F,a,a,a,x,x,a+s
time = 1

[Command]
name = "cpu8"
command = ~U+a+b+c+x+y+z+s,DF, F, D,DF, F,b,b,b,x,x,a+s
time = 1

